home *** CD-ROM | disk | FTP | other *** search
ASP.NET Web Form | 2002-03-17 | 2.0 KB | 29 lines |
- <%@ Page Language="vb" AutoEventWireup="false" Codebehind="ListControlsForm.aspx.vb" Inherits="FirstWebForms.ListControlsForm" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <HTML>
- <HEAD>
- <title>ListControlsForm</title>
- <meta content="Microsoft Visual Studio.NET 7.0" name="GENERATOR">
- <meta content="Visual Basic 7.0" name="CODE_LANGUAGE">
- <meta content="JavaScript" name="vs_defaultClientScript">
- <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
- </HEAD>
- <body>
- <form id="Form1" method="post" runat="server">
- <H1>List Control Demos</H1>
- <P>All the controls on this form perform an auto-postback, so that the label beside
- each one of them always contains updated information about the selection in the
- control itself.</P>
- <P><STRONG>Known Colors: (DataDropList control)</STRONG></P>
- <P><asp:dropdownlist id="ddlColors" runat="server" Width="152px" AutoPostBack="True"></asp:dropdownlist><asp:label id="lblDropDownListInfo" runat="server" ForeColor="Blue">Label</asp:label></P>
- <P><STRONG>Publishers: (ListBox control)</STRONG></P>
- <P><asp:listbox id="lstPublishers" runat="server" Width="152px" AutoPostBack="True" SelectionMode="Multiple"></asp:listbox><asp:label id="lblListBoxInfo" runat="server" ForeColor="Blue">Label</asp:label></P>
- <P><STRONG>Continents: (CheckBoxList control)</STRONG></P>
- <P><asp:checkboxlist id="cblContinents" runat="server" AutoPostBack="True" RepeatColumns="2"></asp:checkboxlist><asp:label id="lblCheckBoxListInfo" runat="server" ForeColor="Blue">Label</asp:label></P>
- <P><STRONG>Weekdays: (RadioButtonList control)</STRONG></P>
- <P><asp:radiobuttonlist id="rblWeekdays" runat="server" AutoPostBack="True" RepeatColumns="4" RepeatDirection="Horizontal"></asp:radiobuttonlist><asp:label id="lblRadioButtonListInfo" runat="server" ForeColor="Blue">Label</asp:label></P>
- <P> </P>
- </form>
- </body>
- </HTML>
-